home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 January / PCWorld_2003-01_cd.bin / Software / Vyzkuste / rychlokurz / httrack.exe / {app} / src / htstools.h < prev    next >
C/C++ Source or Header  |  2002-11-17  |  4KB  |  141 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: httrack.c subroutines:                                 */
  34. /*       various tools (filename analyzing ..)                  */
  35. /* Author: Xavier Roche                                         */
  36. /* ------------------------------------------------------------ */
  37.  
  38.  
  39. #ifndef HTSTOOLS_DEFH
  40. #define HTSTOOLS_DEFH 
  41.  
  42. /* specific definitions */
  43. #include <stdio.h>
  44. #include <stdlib.h>
  45. #include "htsbase.h"
  46. #include "htscore.h"
  47.  
  48. #if HTS_WIN
  49. #else
  50. #include <dirent.h>
  51. #if HAVE_UNISTD_H
  52. #include <unistd.h>
  53. #endif
  54. #include <sys/stat.h>
  55. #endif
  56.  
  57. int ident_url_relatif(char *lien,char* urladr,char* urlfil,char* adr,char* fil);
  58. int lienrelatif(char* s,char* link,char* curr);
  59. int link_has_authority(char* lien);
  60. int link_has_authorization(char* lien);
  61. void long_to_83(int mode,char* n83,char* save);
  62. void longfile_to_83(int mode,char* n83,char* save);
  63. HTS_INLINE int __rech_tageq(const char* adr,const char* s);
  64. HTS_INLINE int __rech_tageqbegdigits(const char* adr,const char* s);
  65. #define rech_tageq(adr,s) \
  66.   ( \
  67.     ( (*((adr)-1)=='<') || (is_space(*((adr)-1))) ) ? \
  68.     ( \
  69.       (streql(*(adr),*(s))) ?   \
  70.       (__rech_tageq((adr),(s))) \
  71.       : 0                       \
  72.     ) \
  73.     : 0\
  74.   )
  75. #define rech_tageqbegdigits(adr,s) \
  76.   ( \
  77.     ( (*((adr)-1)=='<') || (is_space(*((adr)-1))) ) ? \
  78.     ( \
  79.       (streql(*(adr),*(s))) ?   \
  80.       (__rech_tageqbegdigits((adr),(s))) \
  81.       : 0                       \
  82.     ) \
  83.     : 0\
  84.   )
  85. //HTS_INLINE int rech_tageq(const char* adr,const char* s);
  86. HTS_INLINE int rech_sampletag(const char* adr,const char* s);
  87. HTS_INLINE int check_tag(char* from,const char* tag);
  88. int verif_backblue(char* base);
  89. int verif_external(int nb,int test);
  90.  
  91. int istoobig(LLint size,LLint maxhtml,LLint maxnhtml,char* type);
  92.  
  93. HTSEXT_API int hts_buildtopindex(char* path,char* binpath);
  94.  
  95.  
  96.  
  97. // Portable directory find functions
  98.  
  99. #if HTS_WIN
  100.  
  101. typedef struct {
  102.   WIN32_FIND_DATA hdata;
  103.   HANDLE handle;
  104. } find_handle_struct;
  105.  
  106.  
  107. #else
  108.  
  109. typedef struct {
  110.   DIR * hdir;
  111.   struct dirent* dirp;
  112.   struct stat filestat;
  113.   char path[2048];
  114. } find_handle_struct;
  115.  
  116. #endif
  117.  
  118. typedef find_handle_struct* find_handle;
  119.  
  120. typedef struct topindex_chain {
  121.   char name[2048];                    /* path */
  122.   struct topindex_chain* next;        /* next element */
  123. } topindex_chain  ;
  124.  
  125.  
  126. // Directory find functions
  127. find_handle hts_findfirst(char* path);
  128. int hts_findnext(find_handle find);
  129. int hts_findclose(find_handle find);
  130. //
  131. char* hts_findgetname(find_handle find);
  132. int hts_findgetsize(find_handle find);
  133. int hts_findisdir(find_handle find);
  134. int hts_findisfile(find_handle find);
  135. int hts_findissystem(find_handle find);
  136.  
  137.  
  138.  
  139.  
  140. #endif
  141.